:root {
    --clr3: #111317;
    /* main body color */
    --clr5: #FFEED5;
    /*text revel animation */
    --clr1: #43D9C0;
    /* footer back*/
    --border-radius: 7px;
    --text-radius: 50em;
}

body {
    background: var(--clr1) !important;
    overflow-x: hidden;
}

/* Explanation in JS tab */

/* Cool font from Google Fonts! */
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');

.esoc-logo {
    display: block;
    max-height: 500px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    height: 75%;
}


.counters{
    display: flex;
    justify-content: center;
    align-items: center;
}

.count {
    width: 120px;
    height: 120px;
    background: var(--clr1);
    border-radius: 15%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    font-family: verdana;
    float: left;
    margin: 30px;
    text-shadow: 1px 1px black;
    -webkit-box-shadow: 0px 0px 72px -9px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 72px -9px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 72px -9px rgba(0,0,0,0.75);
}

.count-head{
    color: white;
    font-size: 30px;
    font-family: 'Audiowide', cursive;
}


#container {
	/* Center the text in the viewport. */
	color: white;
	/* This filter is a lot of the magic, try commenting it out to see how the morphing works! */
	filter: url(#threshold) blur(0.6px);
}

/* Your average text styling */
#text1, #text2 {
	position: absolute;
	width: 100%;
	display: inline-block;
	
	font-family: 'Raleway', sans-serif;
	font-size: 60px;
	
	text-align: center;
	
	user-select: none;
}
/* main-header start */

.esoc-head {
    position: relative;
    top: -6.5vw;
}

@font-face {
    font-family: "Glacical Indifference";
    src: url("/css/GlacialIndifference-Regular.otf") format("opentype"),
}

.esoc-about {
    font-size: 25px;
    text-align: center;
}

.eosc-head-text {
    font-family: 'Glacical Indifference', Arial, sans-serif;
    font-size: 55px;
    letter-spacing: 6px;
}

[data-target="#mainMenu"] {
    position: relative;
    z-index: 999;
}

#mainMenu li>a {
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.main-header.fixed-nav #mainMenu li>a {
    color: #fff;
    text-decoration: none;
}

#mainMenu li:not(:last-of-type) {
    margin-right: 30px;
}

#mainMenu li>a::before {
    position: absolute;
    content: "";
    width: calc(100% - 1px);
    height: 1px;
    background: #fff;
    bottom: -6px;
    left: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

#mainMenu li>a:hover::before,
#mainMenu li>a.active::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.main-header.fixed-nav #mainMenu li>a::before {
    background: #000;
}

.main-header {
    position: relative;
    top: -100px;
    left: 5vw;
    z-index: 99;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-header.fixed-nav {
    top: 0;
    background: #fff;
    -webkit-box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
    box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-header.fixed-nav .navbar-brand>img:last-of-type {
    display: block;
}

.main-header.fixed-nav .navbar-brand>img:first-of-type {
    display: none;
}

.navbar-brand {
    color: #fff;
}

.main-header .navbar-brand img {
    max-width: 40px;
    animation: fadeInLeft 0.4s both 0.4s;
}


/*header ends*/


/* footer start*/

.footer-img {
    width: 200px;
    height: 200px;
}

.footer {
    width: 90%;
    max-width: 1440px;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 50px;
}

footer {
    padding: 50px;
    width: 100%;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
    position: relative;
    margin: 10px 0 0 0;
}

.logo {
    width: 50px;
    height: 50px;
    position: relative;
    right: 50px;
    border-radius: var(--text-radius);
}

.footer{
    position: relative;
    top: -40px;
}

.footer-text {
    position: relative;
    font-weight: bold;
    top: -20px;
    left: 45%;
}


/*footer end*/

.eosc-head-text {
    font-family: 'Glacical Indifference', Arial, sans-serif;
    font-size: 55px;
    letter-spacing: 6px;
}


/* main-header end */

@media (max-width: 767px) {

    .esoc-logo{
        width: 250px;
        height: 250px;
    }

    /*header starts*/
    .collapse.in {
        display: block !important;
        padding: 0;
        clear: both;
    }
    .eosc-head-text {
        font-size: 47px;
    }
    .main-header {
        margin-left: 0vw;
        top: 10px;
    }
    .esoc-head {
        padding-top: 20px;
    }
    .navbar-toggler {
        margin: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 25px;
        right: 0;
        border: none;
        border-radius: 0;
        outline: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .main-header .navbar {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: right;
    }
    .main-header .navbar-nav {
        margin-top: 70px;
    }
    .main-header .navbar-nav li .nav-link {
        text-align: right;
        padding: 20px 15px;
        border-radius: 0px;
    }
    /**/
    .main-header .navbar-toggler .icon-bar {
        background-color: #fff;
        margin: 0 auto 6px;
        border-radius: 0;
        width: 30px;
        height: 3px;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .main-header .navbar .navbar-toggler .icon-bar:first-child {
        margin-top: 3px;
    }
    .main-header .navbar-toggler .icon-bar-1 {
        width: 10px;
        top: 0px;
    }
    .main-header .navbar-toggler .icon-bar-2 {
        width: 16px;
        top: 12px;
    }
    .main-header .navbar-toggler .icon-bar-3 {
        width: 22px;
        top: 21px;
    }
    .main-header .current .icon-bar {
        margin-bottom: 5px;
        border-radius: 0;
        display: block;
    }
    .main-header .current .icon-bar-1 {
        width: 18px;
    }
    .main-header .current .icon-bar-2 {
        width: 30px;
    }
    .main-header .current .icon-bar-3 {
        width: 10px;
    }
    .main-header .navbar-toggler:hover .icon-bar {
        background-color: #fff;
    }
    .main-header .navbar-toggler:focus .icon-bar {
        background-color: #fff;
    }
    /*header ends*/
    /* footer content start*/
    .logo {
        position: relative;
        left: 18vw;
    }
    .footer-text {
        position: relative;
        font-weight: bold;
        top: 150px;
        left: 2vw;
    }
    /* footer content end*/
}

@media (min-width: 768px) {
    /* ipad setting */
    .collapse.in {
        display: block !important;
        padding: 0;
        clear: both;
    }
    .main-header {
        top: -65px;
    }
    .navbar-toggler {
        margin: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 25px;
        right: 0;
        border: none;
        border-radius: 0;
        outline: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .main-header .navbar {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: right;
    }
    .main-header .navbar-nav {
        margin-top: 70px;
    }
    .main-header .navbar-nav li .nav-link {
        text-align: right;
        padding: 20px 15px;
        border-radius: 0px;
    }
    /**/
    .main-header .navbar-toggler .icon-bar {
        background-color: #fff;
        margin: 0 auto 6px;
        border-radius: 0;
        width: 30px;
        height: 3px;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .main-header .navbar .navbar-toggler .icon-bar:first-child {
        margin-top: 3px;
    }
    .main-header .navbar-toggler .icon-bar-1 {
        width: 10px;
        top: 0px;
    }
    .main-header .navbar-toggler .icon-bar-2 {
        width: 16px;
        top: 12px;
    }
    .main-header .navbar-toggler .icon-bar-3 {
        width: 22px;
        top: 21px;
    }
    .main-header .current .icon-bar {
        margin-bottom: 5px;
        border-radius: 0;
        display: block;
    }
    .main-header .current .icon-bar-1 {
        width: 18px;
    }
    .main-header .current .icon-bar-2 {
        width: 30px;
    }
    .main-header .current .icon-bar-3 {
        width: 10px;
    }
    .main-header .navbar-toggler:hover .icon-bar {
        background-color: #fff;
    }
    .main-header .navbar-toggler:focus .icon-bar {
        background-color: #fff;
    }
    /* header end */
    /* footer content start*/
    .logo {
        margin-left: 20px;
    }
    .footer-text {
        margin-right: 20px;
    }
    /* footer content end*/
}


/* for 370px less devices */

@media (max-width: 350px) {

    /*header starts*/
    .collapse.in {
        display: block !important;
        padding: 0;
        clear: both;
    }
    .eosc-head-text {
        font-size: 37px;
    }
    .main-header {
        margin-left: 0vw;
        top: 25px;
    }
    .navbar-toggler {
        margin: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0px;
        right: 0;
        border: none;
        border-radius: 0;
        outline: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .main-header .navbar {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: right;
    }
    .main-header .navbar-nav {
        margin-top: 70px;
    }
    .main-header .navbar-nav li .nav-link {
        text-align: right;
        padding: 20px 15px;
        border-radius: 0px;
    }
    /**/
    .main-header .navbar-toggler .icon-bar {
        background-color: #fff;
        margin: 0 auto 6px;
        border-radius: 0;
        width: 30px;
        height: 3px;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .main-header .navbar .navbar-toggler .icon-bar:first-child {
        margin-top: 3px;
    }
    .main-header .navbar-toggler .icon-bar-1 {
        width: 10px;
        top: 0px;
    }
    .main-header .navbar-toggler .icon-bar-2 {
        width: 16px;
        top: 12px;
    }
    .main-header .navbar-toggler .icon-bar-3 {
        width: 22px;
        top: 21px;
    }
    .main-header .current .icon-bar {
        margin-bottom: 5px;
        border-radius: 0;
        display: block;
    }
    .main-header .current .icon-bar-1 {
        width: 18px;
    }
    .main-header .current .icon-bar-2 {
        width: 30px;
    }
    .main-header .current .icon-bar-3 {
        width: 10px;
    }
    .main-header .navbar-toggler:hover .icon-bar {
        background-color: #fff;
    }
    .main-header .navbar-toggler:focus .icon-bar {
        background-color: #fff;
    }
    /*header ends*/
    /* footer content start*/
    .logo {
        position: relative;
        left: 17%;
    }
    .footer-text {
        position: relative;
        top: 130px;
        left: 2vw;
    }
    /* footer content end*/
}

@media (max-width: 330px) {
    .logo {
        position: relative;
        left: 13%;
    }
}



/*img- slideshow start here*/


/*img slideshow end here*/


/*  dont change body tag*/

body {
    background: var(--clr1);
    padding: 50px 0 0 0;
    margin: 0 10px;
}

body *,
body :after,
body :before {
    box-sizing: border-box;
}

.transparent {
    background: transparent !important;
}

.wrap {
    max-width: 90%;
    min-width: 200px;
    margin: 0 auto;
    position: relative;
}

.wrap.sticky {
    margin-top: 150px;
    /* set height from header */
}

.fluid .wrap {
    max-width: 100% !important;
}

@media (max-width: 728px) {
    section.cards .card {
        width: 100%;
        display: block;
        margin: 10px 0 0 0 !important;
        padding: 0;
    }
    .wrapper {
        padding: 50px 10px 100px 10px !important;
    }
}

body,
html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    text-rendering: optimizelegibility;
    margin: 0px;
    padding: 0px;
    height: 100%;
}

.wrapper {
    transform-origin: center bottom 0px;
    transition: all 0.5s ease 0s;
    box-shadow: 0px 22px 54px rgba(0, 0, 0, 0.5);
    background: var(--clr3);
    padding: 50px 50px 100px 50px;
}

body.tight .wrapper {
    transform: translateY(-60px) scale(0.9);
    cursor: pointer;
}


/* footer end */


/* text reveal animation start*/

.text {
    color: white;
}

.has-animation {
    position: relative;
}

.has-animation p,
.has-animation img {
    opacity: 0;
}

.has-animation.animate-in p,
.has-animation.animate-in img {
    animation: textHidden 0.1s 1.1s forwards;
}

.has-animation.animate-in:before,
.has-animation.animate-in:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 10;
}

.has-animation.animate-in:before {
    background-color: #eee;
}

.has-animation.animate-in:after {
    background-color: var(--clr5);
    animation-delay: 0.5s;
}

.has-animation.animation-ltr.animate-in:before {
    animation: revealLTR 1.8s ease;
}

.has-animation.animation-ltr.animate-in:after {
    animation: revealLTR 1s 0.6s ease;
}

.has-animation.animation-rtl.animate-in:before {
    animation: revealRTL 1.8s ease;
}

.has-animation.animation-rtl.animate-in:after {
    animation: revealRTL 1s 0.6s ease;
}

@keyframes revealRTL {
    0% {
        width: 0;
        right: 0;
    }
    65% {
        width: 100%;
        right: 0;
    }
    100% {
        width: 0;
        right: 100%;
    }
}

@keyframes revealLTR {
    0% {
        width: 0;
        left: 0;
    }
    65% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes textHidden {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/* revel animation end*/

.profile-icons {
    font-size: 50px;
    text-align: center;
    color: white;
    padding-top: 20px;
    margin-bottom: -50px;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}